--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit c3d1f4faabaa45e7da61fbd0b45eb392e9fa67fc
Changes
5 files changed, 0 insertions(+), 7 deletions(-)
Diff
diff --git a/LXST/Generators.py b/LXST/Generators.py
index e505a50..fa37bc1 100644
--- a/LXST/Generators.py
+++ b/LXST/Generators.py
@@ -8,8 +8,6 @@ from collections import deque
from .Codecs import Codec, CodecError
from .Sources import LocalSource
-RNS.loglevel = RNS.LOG_DEBUG
-
class ToneSource(LocalSource):
DEFAULT_FRAME_MS = 80
DEFAULT_SAMPLERATE = 48000
diff --git a/LXST/Sources.py b/LXST/Sources.py
index 420949a..94335e9 100644
--- a/LXST/Sources.py
+++ b/LXST/Sources.py
@@ -9,8 +9,6 @@ from .Sinks import LocalSink
from .Codecs import Codec, CodecError
from .Codecs.libs.pyogg import OpusFile
-RNS.loglevel = RNS.LOG_DEBUG
-
class LinuxBackend():
SAMPLERATE = 48000
diff --git a/examples/mixer.py b/examples/mixer.py
index 7d5f20f..bef8d1f 100644
--- a/examples/mixer.py
+++ b/examples/mixer.py
@@ -2,7 +2,6 @@ import RNS
import LXST
import sys
import time
-RNS.loglevel = RNS.LOG_DEBUG
target_frame_ms = 20
pipelined_output = True
diff --git a/examples/pipelines.py b/examples/pipelines.py
index 00b8ae7..8fcfe1c 100644
--- a/examples/pipelines.py
+++ b/examples/pipelines.py
@@ -2,7 +2,6 @@ import RNS
import LXST
import sys
import time
-RNS.loglevel = RNS.LOG_DEBUG
if len(sys.argv) < 2:
print("No codec specified")
diff --git a/examples/tone_generator.py b/examples/tone_generator.py
index a7128f5..a854699 100644
--- a/examples/tone_generator.py
+++ b/examples/tone_generator.py
@@ -2,7 +2,6 @@ import RNS
import LXST
import sys
import time
-RNS.loglevel = RNS.LOG_DEBUG
target_frame_ms = 40
tone = LXST.Generators.ToneSource(frequency=388, ease_time_ms=3.14159, target_frame_ms=target_frame_ms)
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────